summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2024-02-09 03:33:22 +0100
committerGitHub <noreply@github.com>2024-02-09 03:33:22 +0100
commitf9a559d2b78b6fa12e4335991c9519a056e8a523 (patch)
treed253e18f6470be83b6ec1fd230dc752b51a30552
parentMerge pull request #12963 from t895/versioning-fix (diff)
parentservice: Fix OutLargeData attributes (diff)
downloadyuzu-f9a559d2b78b6fa12e4335991c9519a056e8a523.tar
yuzu-f9a559d2b78b6fa12e4335991c9519a056e8a523.tar.gz
yuzu-f9a559d2b78b6fa12e4335991c9519a056e8a523.tar.bz2
yuzu-f9a559d2b78b6fa12e4335991c9519a056e8a523.tar.lz
yuzu-f9a559d2b78b6fa12e4335991c9519a056e8a523.tar.xz
yuzu-f9a559d2b78b6fa12e4335991c9519a056e8a523.tar.zst
yuzu-f9a559d2b78b6fa12e4335991c9519a056e8a523.zip
-rw-r--r--src/core/hle/service/cmif_types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/cmif_types.h b/src/core/hle/service/cmif_types.h
index 84f4c2456..325304d5c 100644
--- a/src/core/hle/service/cmif_types.h
+++ b/src/core/hle/service/cmif_types.h
@@ -262,7 +262,7 @@ class OutLargeData {
public:
static_assert(std::is_trivially_copyable_v<T>, "LargeData type must be trivially copyable");
static_assert((A & BufferAttr_In) == 0, "OutLargeData attr must not be In");
- static constexpr BufferAttr Attr = static_cast<BufferAttr>(A | BufferAttr_In | BufferAttr_FixedSize);
+ static constexpr BufferAttr Attr = static_cast<BufferAttr>(A | BufferAttr_Out | BufferAttr_FixedSize);
using Type = T;
/* implicit */ OutLargeData(const OutLargeData& t) : raw(t.raw) {}